fix(http_requests): allow blob: to prepend URL string #637
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is my first PR in this repo. Apologies if I have made any mistakes.
Currently, if the data source originates from the web (thus have the URL of
https?://
), theparseUrl
function correctly parses the protcol, host and path.In our usecase, we often need to download the entire (nifti) image, preprocess them, and generate a blob URL. According to mdn doc on
URL.createObjectURL
, it creates a URL withblob:
prepended. This fails the check as it is implemented currently.This PR addresses this issue.